home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / utility / 95 / pascal / readme1.1st < prev    next >
Encoding:
Text File  |  1987-01-15  |  2.5 KB  |  72 lines

  1.  
  2.               How to Use the Tutorials in Personal Pascal
  3.                          By Jinfu Chen
  4.                            Jan. 1987
  5.  
  6.     This package contains a public domain Turbo Pascal tutorial. Although
  7.     it is designed for Turbo Pascal used in MS-DOS and CP/M systems, it can
  8.     be used in Atari ST with Persoanl Pascal from OSS with little change.
  9.  
  10.     I found this one in a local IBM BBS. After reading thru the whole package
  11.     and complied the example programs, I feel this tutorial can be recommended
  12.     to Personal Pascal users for the purpose of learning generic Pascal. It
  13.     is well written and the style is very informal, unlike many Pascal text
  14.     books in the market. Following is a list of all the files in this package
  15.     with comments I made to point out the differences between Turbo Pascal and
  16.     Personal Pascal when using the tutorial.
  17.  
  18.     I hope you will like it and feel free to leave me your comments and
  19.     questions either to my BBS, MANIAC BBS 207-854-2687 or in GEnie's Atari ST
  20.     RoundTable category 3 topic 2 where is the place for Pascal fans.
  21.  
  22.  
  23.   PRINT-TL.BAT    Batch print file for MS-DOS
  24. * PROG1.PAS
  25.   PROG2.PAS       Tutorial of how to use Turbo Pascal editor, skip it.
  26.   PROG2A.PAS      Command reference card for Turbo Pascal editor, skip it
  27.   PROG3.PAS       Skip it
  28. * PROG4.PAS
  29. * PROG5.PAS
  30. * PROG6.PAS
  31. * PROG7.PAS
  32. % PROG8.PAS
  33. * PROG9.PAS
  34. * PROG10.PAS
  35.   README1.1ST     This file
  36.   READ.ME
  37.   TEST1.PAS
  38.   TL01.TXT        Getting Started
  39.   TL02.TXT        Editing Programs
  40.   TL03.TXT        Program Structure
  41.   TL04.TXT        Declarations, Input
  42.   TL05.TXT        Integer Expressions
  43.   TL06.TXT        Conditional Processing
  44.   TL07.TXT        REPEAT Statement
  45.   TL08.TXT        CASE Statement
  46.   TL09.TXT        FOR Statement
  47.   TL10.TXT        WHILE Statement
  48.  
  49. Note:
  50.  
  51. *  :  Programs can be compiled without modification in Personal Pascal
  52. %  :  The CASE statement extention in Turbo Pascal and Personal Pascal is
  53.       different. In Personal Pascal, the ELSE( or OTHERWISE ) option needs
  54.       a colon ':' before the next statement. For example:
  55.  
  56.       CASE variable1 OF
  57.         value1 : statement1 ;
  58.         value2 : statement2 ;
  59.         .
  60.         .
  61.         .
  62.         valuen : statementn ;
  63.       ELSE : statementn+1 ;
  64.            ^
  65.  
  66. The compiler directive $U+ in Turbo Pascal has other meaning in Personal
  67. Pascal: define user memory. However, due to the syntax in the tutorial
  68. programs, you can leave it intact and still be able to compile it 
  69. successfully.
  70.  
  71. [End of Readme1.1st]
  72.